home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Communications / General / DialScript / Examples / SimpleLogin.ds < prev    next >
Text File  |  1994-03-08  |  340b  |  14 lines

  1. -- This script is not at all robust!
  2.  
  3. script SimpleLogin
  4.  
  5.   state doIt
  6.     send "ATDT7777777\r";        -- Dial modem
  7.     wait "login:";               -- Get login prompt
  8.     send "MYUSERID\r";           -- Send user id.
  9.     wait "Password:";            -- Get password prompt
  10.     send "MYPASSWORD\r";         -- Send password
  11.   end;
  12.  
  13. end;
  14.